home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_se / creation_call.e < prev    next >
Text File  |  1998-12-22  |  4KB  |  181 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  4. --                       http://www.loria.fr/SmallEiffel
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it 
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later 
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License 
  11. -- for  more  details.  You  should  have  received a copy of the GNU General 
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class CREATION_CALL
  17. --   
  18. -- For creation all kinds of creation call : CREATION_CALL_1,
  19. -- CREATION_CALL_2, CREATION_CALL_3 and CREATION_CALL_4.
  20. --
  21. -- Sorry for the following class names, but I have no more ideas at this 
  22. -- time :-(. Classification used is :
  23. --      CREATION_CALL_1    -->    !!foo
  24. --      CREATION_CALL_2    -->    !BAR!foo
  25. --      CREATION_CALL_3    -->    !!foo.bar(...)
  26. --      CREATION_CALL_4    -->    !BAR!foo.bar(...)
  27. --
  28.  
  29. inherit INSTRUCTION;
  30.    
  31. feature 
  32.    
  33.    start_position: POSITION;
  34.      -- Of the first character '!'.
  35.    
  36.    type: TYPE is
  37.      -- Explicit optional generator name if any.
  38.       deferred
  39.       end;
  40.    
  41.    writable: EXPRESSION; 
  42.      -- The target of the creation call.
  43.  
  44. feature {NONE}
  45.    
  46.    current_type: TYPE;
  47.    
  48. feature
  49.    
  50.    end_mark_comment: BOOLEAN is false;
  51.  
  52. feature
  53.    
  54.    call: PROC_CALL is
  55.      -- Optional initialisation call if any.
  56.      -- Target of `call' is `writable'.
  57.       deferred
  58.       end;
  59.    
  60.    run_feature: RUN_FEATURE;
  61.      -- When checked, if any, the only one corresponding 
  62.      -- creation procedure.
  63.    
  64.    arg_count: INTEGER is
  65.       do
  66.      if call /= Void then
  67.         Result := call.arg_count;
  68.      end;
  69.       end;
  70.  
  71.    collect_c_tmp is
  72.       do
  73.       end;
  74.    
  75. feature {NONE} -- Tools for to_runnable :
  76.    
  77.    check_writable(ct: TYPE) is
  78.       require
  79.      current_type = Void;
  80.      ct /= Void
  81.       local
  82.      w: like writable;
  83.       do
  84.      current_type := ct;
  85.      w := writable.to_runnable(ct);
  86.      if w = Void then
  87.         eh.add_position(writable.start_position);
  88.         fatal_error("Bad writable target for creation.");
  89.      else
  90.         writable := w;
  91.      end;
  92.       ensure
  93.      current_type = ct
  94.       end;
  95.    
  96.    check_created_type(t: TYPE) is
  97.       require
  98.      t.is_run_type
  99.       local
  100.      rt: like t;
  101.       do
  102.      rt := t.run_type;
  103.      if small_eiffel.short_flag then
  104.      elseif rt.base_class.is_deferred then
  105.         eh.add_type(rt," is deferred. ");
  106.         warning(start_position,"Cannot create object.");
  107.      end;
  108.      if t.is_formal_generic then
  109.         eh.add_position(start_position);
  110.         eh.append("Creation call on formal generic type (");
  111.         eh.add_type(t,").");
  112.         eh.print_as_fatal_error;
  113.      end;
  114.      rt.run_class.set_at_run_time;
  115.       end;
  116.    
  117. feature {NONE}
  118.    
  119.    frozen c2c_opening(t: TYPE) is
  120.       local
  121.      rc: RUN_CLASS;
  122.       do
  123.      rc := t.run_class;
  124.      cpp.se_trace_ins(start_position);
  125.      cpp.put_character('{');
  126.      gc_handler.allocation(rc);
  127.      cpp.expanded_attributes(t);
  128.       end;
  129.  
  130.    frozen c2c_closing(t: TYPE) is
  131.       do
  132.            writable.compile_to_c;
  133.      cpp.put_character('=');
  134.      cpp.put_string(fz_cast_t0_star);
  135.      cpp.put_character('n');
  136.      cpp.put_string(fz_00);
  137.      if cpp.call_invariant_start(t) then
  138.         cpp.put_character('n');
  139.         cpp.call_invariant_end;
  140.         cpp.put_character(';');
  141.      end;
  142.      cpp.put_character('}');
  143.      cpp.put_character('%N');
  144.       end;
  145.  
  146.    frozen c2c_clear_expanded(id: INTEGER) is
  147.      -- Produce C code to reset the writable expanded
  148.      -- to the default value.
  149.       do
  150.      writable.compile_to_c;
  151.      cpp.put_character('=');
  152.      cpp.put_character('M');
  153.      cpp.put_integer(id);
  154.      cpp.put_string(fz_00);
  155.       end;
  156.  
  157. feature {NONE}
  158.  
  159.    compile_to_jvm0(t: TYPE) is
  160.      -- Push the new object with default initialization.
  161.       require
  162.      t /= Void
  163.       local
  164.      dummy: INTEGER;
  165.       do
  166.      if t.is_reference then
  167.         t.run_class.jvm_basic_new;
  168.      else
  169.         dummy := t.jvm_push_default;
  170.      end;
  171.       end;
  172.  
  173. invariant
  174.    
  175.    start_position /= Void;
  176.    
  177.    writable.is_writable;
  178.  
  179. end -- CREATION_CALL
  180.  
  181.